La tabla que se va a explorar describe un conjunto de \(1436\) automóviles de marca Toyota, medidos cada uno por \(10\) variables. Se define la variable precio como variable de respuesta.
data<-read.csv2("C:/Users/user/Dropbox/ElBosque2009-I/Asignaturas_2019_I/MineriaDeDatos/Compartido_DM_2019/datos/toyota.csv",header = T,sep = ";",dec=".")
head(data)
## Price Age KM FuelType HP Automatic Color CC Doors Weight
## 1 13500 23 46986 Diesel 90 si rojo 2000 3 1165
## 2 13750 23 72937 Diesel 90 si rojo 2000 3 1165
## 3 13950 24 41711 Diesel 90 si rojo 2000 3 1165
## 4 14950 26 48000 Diesel 90 no rojo 2000 3 1165
## 5 13750 30 38500 Diesel 90 no rojo 2000 3 1170
## 6 12950 32 61000 Diesel 90 no rojo 2000 3 1170